home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_show / bench1 / fixed_array_bench1.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  335 b   |  21 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class FIXED_ARRAY_BENCH1
  5.  
  6. inherit BENCH1;
  7.  
  8. creation make
  9.  
  10. feature
  11.  
  12.   make is
  13.       local
  14.      fixed_array: FIXED_ARRAY[INTEGER];
  15.       do
  16.      !!fixed_array.make(bench1_size);
  17.      bench1(fixed_array);
  18.       end;
  19.  
  20. end
  21.